home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / Misc / GMS / GMSDev / Includes / clib / sound_protos.h < prev   
Encoding:
C/C++ Source or Header  |  1997-11-01  |  509 b   |  26 lines

  1. #ifndef  CLIB_SOUND_PROTOS_H
  2. #define  CLIB_SOUND_PROTOS_H
  3.  
  4. /*
  5. **   $VER: sound_protos.h V0.9B
  6. **
  7. **   C prototypes.
  8. **
  9. **   (C) Copyright 1996-1997 DreamWorld Productions.
  10. **       All Rights Reserved.
  11. */
  12.  
  13. #ifndef  DPKERNEL_H
  14. #include <dpkernel/dpkernel.h>
  15. #endif
  16.  
  17. APTR AllocSoundMem(LONG Size, LONG Flags);
  18. WORD CheckSound(struct Sound *);
  19. void FreeSoundMem(APTR MemBlock);
  20. void SetVolume(struct Sound *, WORD Volume);
  21. void StopAudio(void);
  22. void StopSound(struct Sound *);
  23.  
  24. #endif /* CLIB_SOUND_PROTOS_H */
  25.  
  26.